1. 변수 쪼개기

  • 하나의 값이 여러 목적으로 사용될 때

하나의 변수에 두개 이상의 역할이 있다면 해당 변수를 나눠준다.

예시 코드

😞 Before

let temp = 2 * (height + width)
temp = height * width

😃 After

const perimeter = 2 * (height + width)
const area = height * width

results matching ""

    No results matching ""